From 1912f1220cf87aee28349469893f101980714a05 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Fri, 18 Jan 2019 12:47:45 +0000 Subject: [PATCH] libxl: fix error message for unsharing namespaces Signed-off-by: Wei Liu Acked-by: Ian Jackson Release-acked-by: Juergen Gross --- tools/libxl/libxl_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_linux.c b/tools/libxl/libxl_linux.c index 59dd945bc1..873b0271af 100644 --- a/tools/libxl/libxl_linux.c +++ b/tools/libxl/libxl_linux.c @@ -344,7 +344,7 @@ int libxl__local_dm_preexec_restrict(libxl__gc *gc) /* Unshare mount and IPC namespaces. These are unused by QEMU. */ r = unshare(CLONE_NEWNS | CLONE_NEWIPC); if (r) { - LOGE(ERROR, "libxl: Mount and IPC namespace unfailed"); + LOGE(ERROR, "libxl: unshare Mount and IPC namespace failed"); return ERROR_FAIL; } -- 2.30.2